-
-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: preserve morphs on some piped properties #1174
Conversation
|
||
return ctx.$.node("morph", { | ||
morphs, | ||
in: from.in | ||
in: from.inner.in as any | ||
}) | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I used as any
but maybe it should be typed better
@@ -201,7 +201,7 @@ const _pipeMorphed = ( | |||
|
|||
return ctx.$.node("morph", { | |||
morphs, | |||
in: from.in | |||
in: from.inner.in as any |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would usually use as never
in a case like this but I can update that later, it's pretty inconsequential.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please check the types anyway, there's a good chance it shouldn't need the case at all
No description provided.